home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / temgen.lha / Temgen / tg-0.11 / lintab.h < prev    next >
C/C++ Source or Header  |  2002-12-18  |  266b  |  14 lines

  1. #ifndef __lintab_h_
  2. #define __lintab_h_
  3.  
  4. struct lintab;
  5.  
  6. struct lintab *new_lintab( int size, int delta );
  7. void free_lintab( struct lintab* );
  8.  
  9. int lt_set( struct lintab*, int, void* );
  10. void *lt_get( struct lintab*, int );
  11. int lt_maxindex( struct lintab* );
  12.  
  13. #endif
  14.